home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1994 October / Macformat17.cdr / Shareware City / Utilities / Macro Editor 1.11 / Macro Editor FAT / Macro Editor FAT.rsrc / TEXT_128.txt < prev    next >
Encoding:
Text File  |  1994-06-28  |  1.6 KB  |  45 lines

  1. ============================
  2.  KeyQuencer Extensions Help
  3. ============================
  4.  
  5. This help gathers information from all the extensions in the
  6. "KeyQuencer Extensions" folder. You may save it as a text file
  7. and print it with a text editor to create a quick reference
  8. for your extensions. Move any disabled extensions to the
  9. "KeyQuencer Extensions" folder and launch the macro editor
  10. again if you want to include some help for them as well.
  11.  
  12. Format of this help:
  13.  
  14.   * Extension action
  15.   * Extension syntax
  16.  
  17.   * parameter1 = meaning of parameter1
  18.   * ...
  19.   * parameterN = meaning of parameterN
  20.  
  21. Syntax conventions:
  22.  
  23.   - xxx is a required parameter, [xxx] is optional
  24.   - xxx/yyy means that xxx and yyy can't be used together
  25.   - #num is a number, the '#' character must not be typed
  26.   - xxx #num is a parameter that has both a name and a number
  27.   - "xxx" is a literal string, the quotes must be typed
  28.  
  29. Examples:
  30.  
  31.   * ChangeClip "new" ["old"/#offset[#length]/before["find"]/after["find"]] [once] [enforce]
  32.   - you must type the "new" string after the ChangeClip command
  33.   - you may optionally specify an "old" string, an #offset or a position
  34.     the #offset may optionally have a #length specifier
  35.     the before and after parameters may optionally have a "find" string
  36.   - the once and enfore parameters are optional and don't interfere with each other
  37.  
  38.   ChangeClip "Hi there!"
  39.   ChangeClip "KeyQuencer" "this control panel" once enforce
  40.   ChangeClip "inserted text" 15
  41.   ChangeClip "replacing text" 15 7 enforce
  42.   ChangeClip "Prefix: " before
  43.   ChangeClip "wonderful " before "KeyQuencer"
  44.  
  45.